Plotly
Wolfram Kernel
Execution environment
An alternative plotting function to Plot that uses Plotly.js
Plotly[expr_, {variable, min, max, step}]
It mimics the syntax of Plot
and provides legend, pan/zoom features out of the box. Despite this convenience it does not rely on Graphics functionality, therefore is hard to customize.
Plotly[Evaluate[Table[BesselJ[n, x], {n, 4}]], {x, 0, 10}]
danger
This is still in development and has no options for styling
Dev notes
This is a wrapper of Plot
, that translates kinda in hacky way the result to ListLinePlotly
. Which is the only high-order plotting function that support dynamic updates out of the box.
Credits for this adaptation to @userrand